home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fgetc.c < prev    next >
C/C++ Source or Header  |  1988-06-10  |  2KB  |  72 lines

  1. /* 
  2.  * fgetc.c --
  3.  *
  4.  *    Source code for the "fgetc" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: fgetc.c,v 1.1 88/06/10 16:23:43 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * fgetc --
  26.  *
  27.  *    This procedure returns the next input character from a stream.
  28.  *    It's a procedural version of the getc macro, and also
  29.  *    gets invoked by getc when the buffer needs to be refilled.
  30.  *
  31.  * Results:
  32.  *    The result is an integer value that is equal to EOF if an end
  33.  *    of file or error condition was encountered on the stream.
  34.  *    Otherwise, it is the value of the next input character from
  35.  *    stream.
  36.  *
  37.  * Side effects:
  38.  *    A character is removed from stream.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. fgetc(stream)
  45.     register FILE *stream;    /* Stream from which to read character. */
  46. {
  47.     if (!(stream->flags & STDIO_READ)) {
  48.     return(EOF);
  49.     }
  50.     while (stream->readCount <= 0) {
  51.     if ((stream->status != 0) || (stream->flags & STDIO_EOF)) {
  52.         return(EOF);
  53.     }
  54.  
  55.     /*
  56.      * If the stream has been getting used for writing lately,
  57.      * "turn it around" by flushing the write data.  Then read
  58.      * in a buffer-full of read data.
  59.      */
  60.  
  61.     if ((stream->writeCount > 0)
  62.         && (stream->lastAccess >= stream->buffer)) {
  63.         (*stream->writeProc)(stream, 1);
  64.         stream->writeCount = 0;
  65.     }
  66.     (*stream->readProc)(stream);
  67.     }
  68.     stream->readCount--;
  69.     stream->lastAccess++;
  70.     return *stream->lastAccess;
  71. }
  72.